home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib25 / errbase.h < prev    next >
Text File  |  1992-09-29  |  405b  |  24 lines

  1. /*
  2.  * Errno defs to be included in *.ss floating point routines, from <errno.h>
  3.  *   -- hyc@hanauma.jpl.nasa.gov, 9-17-92
  4.  */
  5.  
  6.     .globl    _errno
  7.  
  8. EDOM    =    62
  9. ERANGE    =    63
  10.  
  11. #ifdef __MBASE__
  12. #define Errno    __MBASE__@(_errno)
  13. #define Stderr    __MBASE__@(__iob+52)
  14. #else
  15. #define Errno    _errno
  16. #define Stderr    __iob+52
  17. #endif
  18.  
  19. #ifdef __MSHORT__
  20. #define Emove    movew
  21. #else
  22. #define Emove    movel
  23. #endif
  24.